home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / mint / lib / mntlib44.zoo / mntlib / getdtabl.c < prev    next >
C/C++ Source or Header  |  1993-10-12  |  201b  |  16 lines

  1. #include <stdio.h>
  2. #include <mintbind.h>
  3. #include <support.h>
  4. #include <unistd.h>
  5.  
  6. extern int __mint;
  7.  
  8. int
  9. getdtablesize()
  10. {
  11.     if (__mint < 7)
  12.         return FOPEN_MAX;
  13.  
  14.     return (int)Sysconf(_SC_OPEN_MAX);
  15. }
  16.